From 04dffa0be959268a5165b59c389656c8e33b6598 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Mon, 19 Apr 2010 08:59:14 +0100 Subject: [PATCH] xend: support 'ioemu' subtype in tap protocol specification blktapctrl supports both 'tapdisk' and 'ioemu' subtypes in tap protocol specification. Support the 'ioemu' subtype in xend BlktapController as well. Signed-off-by: Jim Fehlig --- tools/python/xen/xend/server/BlktapController.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/xend/server/BlktapController.py b/tools/python/xen/xend/server/BlktapController.py index 48cd13e152..a34a2b82d7 100644 --- a/tools/python/xen/xend/server/BlktapController.py +++ b/tools/python/xen/xend/server/BlktapController.py @@ -189,7 +189,7 @@ class Blktap2Controller(BlktapController): blktap2_installed=1; if typ in ('tap'): - if subtyp in ('tapdisk'): + if subtyp in ('tapdisk', 'ioemu'): if params not in blktap2_disk_types or not blktap2_installed: # pass this device off to BlktapController log.warn('WARNING: using deprecated blktap module') -- 2.30.2